Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
The plur npm package is designed to easily pluralize words. It allows you to get the plural form of a word based on the count provided. This can be particularly useful in applications where you need to display text that dynamically changes based on a quantity (e.g., item counts, messages, etc.).
Pluralizing a word
This feature allows you to pluralize a single word based on a count. If the count is more than one, it returns the plural form of the word.
"const plur = require('plur');\nconsole.log(plur('unicorn', 2)); // 'unicorns'"
Custom plural forms
This feature allows you to specify a custom plural form for a word. This is useful for words that do not follow regular pluralization rules.
"const plur = require('plur');\nconsole.log(plur('radius', 2, 'radii')); // 'radii'"
The pluralize package offers similar functionality to plur, allowing for the pluralization of words. It goes a step further by also supporting singularization, counting, and adding functionality to work with irregular words and uncountable nouns. This makes it a bit more versatile compared to plur.
Inflection is another npm package that provides methods for transforming words between singular and plural forms, among other string transformations like camelizing, underscoring, and humanizing. It offers a broader set of string manipulation functionalities compared to plur, making it suitable for applications that require more than just pluralization.
Naively pluralize a word
$ npm install --save plur
var plur = require('plur');
plur('unicorn', 4);
//=> 'unicorns'
plur('hero', 'heroes', 4);
//=> 'heroes'
Type: string
Word to pluralize.
Type: string
Default: word
+ s
Pluralized word.
Type: number
Count to determine whether to use singular or plural.
MIT © Sindre Sorhus
FAQs
Pluralize a word
The npm package plur receives a total of 939,709 weekly downloads. As such, plur popularity was classified as popular.
We found that plur demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.